Google Colab で GCSFUSE 使う
インストール
単にこれやれば良い、コードネームハードコードしないで......
code:cell.py
%%bash
export GCSFUSE_REPO=gcsfuse-lsb_release -c -s
apt -qq update && apt -qq install gcsfuse
gcsfuse --version
起動
バケットを pokutuna-playground としたとき
code:mount.py
!mkdir -p /gcs/pokutuna-playground
!gcsfuse pokutuna-playground /gcs/pokutuna-playground
アンマウント
code:unmount.py
!fusermount -u /gcs/pokutuna-playground/
まあつど Fuse で IO するのは遅いのは分かる